home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / intoids.lha / Intoids 1.0 / Developer / SASC / include / proto / Intoids.h
C/C++ Source or Header  |  1997-01-12  |  2KB  |  54 lines

  1. #ifndef PROTO_INTOIDS_H
  2. #define PROTO_INTOIDS_H 1
  3.  
  4. /******************************************************************************
  5.  * $Header: Big:Programming/C/Intoids/Library/RCS/Intoids_master.h,v 1.1 1997/01/12 10:33:25 AGMS Exp $
  6.  *
  7.  * Include this file <proto/Intoids.h> in your application program if
  8.  * you want to use Intoids.library.  It will include the various
  9.  * headers and add glue for calling the library functions.  You still
  10.  * have to OpenLibrary and CloseLibrary and put the library pointer
  11.  * into the IntoidsBase global variable.
  12.  *
  13.  * Look in Intoids.c for documentation (autodocs generated from there), e-mail
  14.  * addresses and credits.  See Libraries/Intoids.h for datatypes.
  15.  *
  16.  * Intoids.library - An Amiga runtime shared code library for efficiently
  17.  * handling large and small integer values using pointer sized data fields.
  18.  *
  19.  * Modifications for storing smaller integers in 32 bit values and conversion
  20.  * to an Amiga library copyright © 1996 by Alexander G. M. Smith.
  21.  * Original long integer code copyright © 1988 Free Software Foundation.
  22.  *
  23.  * This library is free software; you can redistribute it and/or
  24.  * modify it under the terms of the GNU Library General Public
  25.  * License as published by the Free Software Foundation; either
  26.  * version 2 of the License, or (at your option) any later version.
  27.  *
  28.  * This library is distributed in the hope that it will be useful,
  29.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  31.  * Library General Public License for more details.
  32.  *
  33.  * You should have received a copy of the GNU Library General Public
  34.  * License along with this library; if not, write to the Free
  35.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  36.  */
  37.  
  38.  
  39. #ifdef __GNUC__
  40.   #include <clib/Intoids_protos.h>
  41.   #if defined(__OPTIMIZE__) && !defined(__NOINLINES__)
  42.   #include <inline/Intoids.h>
  43.   #endif
  44.   #ifndef __NOLIBBASE__
  45.   extern struct Library *IntoidsBase;
  46.   #endif
  47. #else /* SAS C and other standard Amiga C's */
  48.   #include <clib/Intoids_protos.h>
  49.   extern struct Library *IntoidsBase;
  50.   #include <pragmas/Intoids_pragmas.h>
  51. #endif
  52.  
  53. #endif /* PROTO_INTOIDS_H */
  54.